' Theremino Automation
' Demo program for: "Load" (images, video, sounds, programs and web pages)

' In this demo the filename depends from the v1 value

' The v1 value is increased up to 15 
' the complete name is composed in the string s1
' and the media file is loaded

Label Loop1
	v1 = v1 + 1
	If v1 > 15
		v1 = 0
	EndIf
	s1 = "BM_Foundation" + v1 + ".jpg"
	Print s1
	Load s1
	Wait Seconds 0.3
Goto Loop1

'WATCH v1
'WATCH s1
'EXEC s1 = ""
